home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d6 / sale_c31.arc / HARD1.TXT < prev    next >
Text File  |  1990-12-26  |  3KB  |  56 lines

  1.  
  2.                                 Hard Drive
  3.                                     and 
  4.                     File Allocation Table [FAT] issues:
  5.  
  6. It takes 10 to 15 minutes for the hard drive and controller to warm up.  If 
  7. you  power  the computer on and off every day,  eventually  you  will  have 
  8. read/write problems.   Either give the computer at least 15 minutes to warm 
  9. up  before going in the program,  or leave the computer running around  the 
  10. clock,  but  turn off the monitor when you leave at night.   If left on day 
  11. and  night,   the hard drive and mother board will actually run better  and 
  12. last longer.  
  13.  
  14. Anticipate hard drive problems.  If a bad sector exists on your hard drive, 
  15. the  operating  system  has  no way of avoiding  doing  read/write  to  the 
  16. corrupted area.  Any database program will, by definition, access much data 
  17. during the execution of its main program.   If a bad sector resides on your 
  18. hard  drive,  the operating system may periodically and at random write  to 
  19. that area.   Corrupted data, indexes, and memory files often come from this 
  20. one cause.  
  21.  
  22. A number of utilities exist that will test every sector on your hard  drive 
  23. for corruption.   Once identified,  those sectors are 'marked' inactive  in 
  24. the directory and will not be accessed anymore.   The best among this group 
  25. is Peter Norton's [TM,  Peter Norton Computing,  Inc.]  DISKTEST.COM.   You 
  26. will  find  this utility when you purchase his Norton Utilities  - Advanced 
  27. Edition  [TM,  Peter Norton Computing,  Inc.].   Any active  database  user 
  28. should use this utility at least every month, if not every week.
  29.  
  30. Let's say your hard drive is C:.  The syntax to check for bad sectors is:
  31.  
  32.                            DISKTEST C:
  33.  
  34. If  the  utility asks you for 'Disk test or File test',  indicate that  you 
  35. want  a  'Disk  test'  by entering a  'D'.    [note  that  DISKTEST.COM  is 
  36. sometimes identified by its' short name of DT.COM.]
  37.  
  38. For more information on this product, call Peter Norton Computing, Inc.  
  39.  
  40.  
  41.                     File Allocation Table [FAT] issues:
  42.  
  43. Maintain  a  clean  File Allocation Table [FAT]  in  your  directory.   The 
  44. operating  system  is continually opening and closing files.   In  a  large 
  45. database  program,  this  activity  is intensified.   If  you  restart  the 
  46. computer  while the operating system has some files open,  it 'forgets'  to 
  47. close them.   These 'forgotten' file closings can cause a problem when  you 
  48. later  continue  the cycle of opening and closing files.   The  command  to 
  49. 'close' these files is:
  50.  
  51.                                  CHKDSK /F    
  52.  
  53. Good  directory and FAT hygiene dictates that you do this weekly if you use 
  54. a database program often.
  55.  
  56.